    /*Sail Network Mapping Section*/
        /* Main container styling */
        .sail-network {
            background-color: #003366; /* Navy blue background */
            color: #fff;
            padding:0px;
            text-align: center;
            margin-top: 40px;
            width:90%;
            height: 490px;
            border-radius: 9px;
          }
      
          .sail-network h2 {
            font-size: 30px;
            font-weight: bold;
            margin-top: 20px;
          }
      
          /* Flex layout for content */
          .sail-content {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
          }
      
          /* Left side information styling */
          .sail-info {
            max-width: 400px;
            text-align: left;
          }
      
          .sail-info ul {
            list-style-type: none;
            padding: 0;
          }
      
          .sail-info li {
            margin: 10px 0;
            font-size: 17px;
            display: flex;
            align-items: center;
          }
      
          .sail-info li::before {
            content: "✱"; /* Star symbol */
            color: #ffffff;
            font-weight: bold;
            margin-right: 8px;
          }
      
          /* SAIL logo styling */
          .sail-logo {
            width: 80px;
            margin: 20px auto;
            display: flex ;
          }
      
          /* Button styling */
          .download-button {
            background-color: #fff;
            color: #003366;
            border: none;
            padding: 10px 20px;
            font-size: 1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: 0.3s ease;
            display: flex;
            position: relative;
          }
      
          .download-button:hover {
            background-color: #cccccc;
          }
      
          /* Right side map styling */
          .sail-map img {
          margin:-30px;
          max-width: 100%;
          height: 420px;
          border-radius: 8px;
          }